page.tsx 582 B

123456789101112131415161718192021222324
  1. import React from 'react'
  2. import ChartView from './chartView'
  3. import CardView from './cardView'
  4. import TracingPanel from './tracing/panel'
  5. import ApikeyInfoPanel from '@/app/components/app/overview/apikey-info-panel'
  6. export type IDevelopProps = {
  7. params: { appId: string }
  8. }
  9. const Overview = async ({
  10. params: { appId },
  11. }: IDevelopProps) => {
  12. return (
  13. <div className="h-full px-4 sm:px-16 py-6 overflow-scroll">
  14. <ApikeyInfoPanel />
  15. <TracingPanel />
  16. <CardView appId={appId} />
  17. <ChartView appId={appId} />
  18. </div>
  19. )
  20. }
  21. export default Overview